From 92ee6b3ae10e0d06d9ba7d12ed5c7b50064aa517 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 5 Sep 2007 12:17:39 +0000 Subject: [PATCH] fix wrong default value in ::tab-expand param spec constructor. Wed Sep 5 14:15:17 2007 Tim Janik * gtk/gtknotebook.c (gtk_notebook_class_init): fix wrong default value in ::tab-expand param spec constructor. svn path=/trunk/; revision=18725 --- ChangeLog | 5 +++++ gtk/gtknotebook.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 82e5983c18..adb6039da4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 5 14:15:17 2007 Tim Janik + + * gtk/gtknotebook.c (gtk_notebook_class_init): fix wrong default value + in ::tab-expand param spec constructor. + 2007-09-04 Fernando Herrera * gtk/gtkbuilder.c: (gtk_builder_finalize), diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 48011b564a..7e32bac2bb 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -689,7 +689,7 @@ gtk_notebook_class_init (GtkNotebookClass *class) g_param_spec_boolean ("tab-expand", P_("Tab expand"), P_("Whether to expand the child's tab or not"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_TAB_FILL, -- 2.30.2